@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Poppins:wght@400;600&display=swap');

:root {
    --primary-color: #4a90e2;
    --secondary-color: #50e3c2;
    --bg-start: #f4f6f9;
    --bg-end: #eaf1f7;
    --text-color: #333;
    --heading-color: #1a1a1a;
}

/* Main section with animated background shapes */
.Headline {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
}

/* Floating blurred circles */
.Headline::before,
.Headline::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 12s ease-in-out infinite alternate;
}

.Headline::before {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.Headline::after {
    width: 350px;
    height: 350px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -100px;
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(50px) translateX(30px);
    }
}

/* Glassmorphism box */
.box {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.box p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrump ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.breadcrump li {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.breadcrump li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.breadcrump li a:hover {
    color: var(--secondary-color);
}

.breadcrump li span {
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .Headline {
        padding: 60px 15px;
    }

    .box {
        padding: 30px;
    }

    h1 {
        font-size: 2rem;
    }

    .box p {
        font-size: 1rem;
    }
}